home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / zdps1.c < prev    next >
C/C++ Source or Header  |  1996-05-28  |  11KB  |  446 lines

  1. /* Copyright (C) 1990, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zdps1.c */
  20. /* Display PostScript graphics extensions */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsmatrix.h"
  25. #include "gspath.h"
  26. #include "gspath2.h"
  27. #include "gsstate.h"
  28. #include "ialloc.h"
  29. #include "igstate.h"
  30. #include "ivmspace.h"
  31. #include "store.h"
  32. #include "stream.h"
  33. #include "ibnum.h"
  34.  
  35. /* Imported data */
  36. extern op_proc_p zcopy_procs[t_next_index];
  37.  
  38. /* Forward references */
  39. private int gstate_unshare(P1(os_ptr));
  40.  
  41. /* Structure descriptors */
  42. public_st_igstate_obj();
  43.  
  44. /* Initialize by adding an entry for gstates to the `copy' operator. */
  45. /* This is done with a hack -- we know that gstates are the only */
  46. /* t_astruct subtype that implements copy. */
  47. private void
  48. zdps1_init(void)
  49. {    /* zdevice2_init might have already initialized this. */
  50.     /* A hack on top of a hack! */
  51.     if ( zcopy_procs[t_astruct] == zcopy_procs[t_struct] )
  52.       zcopy_procs[t_astruct] = zcopy_gstate;
  53. }
  54.  
  55. /* ------ Graphics state ------ */
  56.  
  57. /* <bool> setstrokeadjust - */
  58. private int
  59. zsetstrokeadjust(register os_ptr op)
  60. {    check_type(*op, t_boolean);
  61.     gs_setstrokeadjust(igs, op->value.boolval);
  62.     pop(1);
  63.     return 0;
  64. }
  65.  
  66. /* - currentstrokeadjust <bool> */
  67. private int
  68. zcurrentstrokeadjust(register os_ptr op)
  69. {    push(1);
  70.     make_bool(op, gs_currentstrokeadjust(igs));
  71.     return 0;
  72. }
  73.  
  74. /* <x> <y> sethalftonephase - */
  75. private int
  76. zsethalftonephase(register os_ptr op)
  77. {    int code;
  78.     long x, y;
  79.     check_type(op[-1], t_integer);
  80.     check_type(*op, t_integer);
  81.     x = op[-1].value.intval;
  82.     y = op->value.intval;
  83.     if ( x != (int)x || y != (int)y )
  84.         return_error(e_rangecheck);
  85.     code = gs_sethalftonephase(igs, (int)x, (int)y);
  86.     if ( code >= 0 ) pop(2);
  87.     return code;
  88. }
  89.  
  90. /* - currenthalftonephase <x> <y> */
  91. private int
  92. zcurrenthalftonephase(register os_ptr op)
  93. {    gs_int_point phase;
  94.     gs_currenthalftonephase(igs, &phase);
  95.     push(2);
  96.     make_int(op - 1, phase.x);
  97.     make_int(op, phase.y);
  98.     return 0;
  99. }
  100.  
  101. /* ------ Graphics state objects ------ */
  102.  
  103. /* Check to make sure that all the elements of a graphics state */
  104. /* can be stored in the given allocation space. */
  105. /****** DOESN'T CHECK THE NON-REFS. ****** */
  106. private int
  107. gstate_check_space(int_gstate *isp, uint space)
  108. {
  109. #define gsref_check(p) store_check_space(space, p)
  110.     int_gstate_map_refs(isp, gsref_check);
  111. #undef gsref_check
  112.     return 0;
  113. }
  114.  
  115. /* - gstate <gstate> */
  116. int
  117. zgstate(register os_ptr op)
  118. {    gs_state *pnew;
  119.     igstate_obj *pigo;
  120.     int_gstate *isp;
  121.     gs_memory_t *mem;
  122.     int code = gstate_check_space(istate, icurrent_space);
  123.     if ( code < 0 ) return code;
  124.     pigo = ialloc_struct(igstate_obj, &st_igstate_obj, "gstate");
  125.     if ( pigo == 0 )
  126.       return_error(e_VMerror);
  127.     mem = gs_state_swap_memory(igs, imemory);
  128.     pnew = gs_gstate(igs);
  129.     gs_state_swap_memory(igs, mem);
  130.     if ( pnew == 0 )
  131.       {    ifree_object(pigo, "gstate");
  132.         return_error(e_VMerror);
  133.       }
  134.     isp = gs_int_gstate(pnew);
  135.     int_gstate_map_refs(isp, ref_mark_new);
  136.     push(1);
  137.     /*
  138.      * Since igstate_obj isn't a ref, but only contains a ref,
  139.      * save won't clear its l_new bit automatically, and
  140.      * restore won't set it automatically; we have to make sure
  141.      * this ref is on the changes chain.
  142.      */
  143.     make_iastruct(op, a_all, pigo);
  144.     make_null(&pigo->gstate);
  145.     ref_save(op, &pigo->gstate, "gstate");
  146.     make_istruct_new(&pigo->gstate, 0, pnew);
  147.     return 0;
  148. }
  149.  
  150. /* copy for gstates */
  151. int
  152. zcopy_gstate(register os_ptr op)
  153. {    os_ptr op1 = op - 1;
  154.     gs_state *pgs;
  155.     gs_state *pgs1;
  156.     int_gstate *pistate;
  157.     gs_memory_t *mem;
  158.     int code;
  159.     check_stype(*op, st_igstate_obj);
  160.     check_stype(*op1, st_igstate_obj);
  161.     check_write(*op);
  162.     code = gstate_unshare(op);
  163.     if ( code < 0 )
  164.       return code;
  165.     pgs = igstate_ptr(op);
  166.     pgs1 = igstate_ptr(op1);
  167.     pistate = gs_int_gstate(pgs);
  168.     code = gstate_check_space(gs_int_gstate(pgs1), r_space(op));
  169.     if ( code < 0 ) return code;
  170. #define gsref_save(p) ref_save(op, p, "copygstate")
  171.     int_gstate_map_refs(pistate, gsref_save);
  172. #undef gsref_save
  173.     mem = gs_state_swap_memory(pgs, imemory);
  174.     code = gs_copygstate(pgs, pgs1);
  175.     gs_state_swap_memory(pgs, mem);
  176.     if ( code < 0 )
  177.       return code;
  178.     int_gstate_map_refs(pistate, ref_mark_new);
  179.     *op1 = *op;
  180.     pop(1);
  181.     return 0;
  182. }
  183.  
  184. /* <gstate> currentgstate <gstate> */
  185. int
  186. zcurrentgstate(register os_ptr op)
  187. {    gs_state *pgs;
  188.     int_gstate *pistate;
  189.     int code;
  190.     gs_memory_t *mem;
  191.     check_stype(*op, st_igstate_obj);
  192.     check_write(*op);
  193.     code = gstate_unshare(op);
  194.     if ( code < 0 )
  195.       return code;
  196.     pgs = igstate_ptr(op);
  197.     pistate = gs_int_gstate(pgs);
  198.     code = gstate_check_space(istate, r_space(op));
  199.     if ( code < 0 ) return code;
  200. #define gsref_save(p) ref_save(op, p, "currentgstate")
  201.     int_gstate_map_refs(pistate, gsref_save);
  202. #undef gsref_save
  203.     mem = gs_state_swap_memory(pgs, imemory);
  204.     code = gs_currentgstate(pgs, igs);
  205.     gs_state_swap_memory(pgs, mem);
  206.     if ( code < 0 )
  207.       return code;
  208.     int_gstate_map_refs(pistate, ref_mark_new);
  209.     return 0;
  210. }
  211.  
  212. /* <gstate> setgstate - */
  213. int
  214. zsetgstate(register os_ptr op)
  215. {    int code;
  216.     check_stype(*op, st_igstate_obj);
  217.     check_read(*op);
  218.     code = gs_setgstate(igs, igstate_ptr(op));
  219.     if ( code < 0 ) return code;
  220.     pop(1);
  221.     return 0;
  222. }
  223.  
  224. /* ------ Rectangles ------- */
  225.  
  226. /* We preallocate a short list for rectangles, because */
  227. /* the rectangle operators usually will involve very few rectangles. */
  228. #define max_local_rect 5
  229. typedef struct local_rects_s {
  230.     gs_rect *pr;
  231.     uint count;
  232.     gs_rect rl[max_local_rect];
  233. } local_rects;
  234.  
  235. /* Forward references */
  236. private int rect_get(P2(local_rects *, os_ptr));
  237. private void rect_release(P1(local_rects *));
  238.  
  239. /* <x> <y> <width> <height> .rectappend - */
  240. /* <numarray|numstring> .rectappend - */
  241. private int
  242. zrectappend(os_ptr op)
  243. {    local_rects lr;
  244.     int npop = rect_get(&lr, op);
  245.     int code;
  246.     if ( npop < 0 ) return npop;
  247.     code = gs_rectappend(igs, lr.pr, lr.count);
  248.     rect_release(&lr);
  249.     if ( code < 0 ) return code;
  250.     pop(npop);
  251.     return 0;
  252. }
  253.  
  254. /* <x> <y> <width> <height> rectclip - */
  255. /* <numarray|numstring> rectclip - */
  256. private int
  257. zrectclip(os_ptr op)
  258. {    local_rects lr;
  259.     int npop = rect_get(&lr, op);
  260.     int code;
  261.     if ( npop < 0 ) return npop;
  262.     code = gs_rectclip(igs, lr.pr, lr.count);
  263.     rect_release(&lr);
  264.     if ( code < 0 ) return code;
  265.     pop(npop);
  266.     return 0;
  267. }
  268.  
  269. /* <x> <y> <width> <height> rectfill - */
  270. /* <numarray|numstring> rectfill - */
  271. private int
  272. zrectfill(os_ptr op)
  273. {    local_rects lr;
  274.     int npop = rect_get(&lr, op);
  275.     int code;
  276.     if ( npop < 0 ) return npop;
  277.     code = gs_rectfill(igs, lr.pr, lr.count);
  278.     rect_release(&lr);
  279.     if ( code < 0 ) return code;
  280.     pop(npop);
  281.     return 0;
  282. }
  283.  
  284. /* <x> <y> <width> <height> rectstroke - */
  285. /* <numarray|numstring> rectstroke - */
  286. private int
  287. zrectstroke(os_ptr op)
  288. {    gs_matrix mat;
  289.     local_rects lr;
  290.     int npop, code;
  291.     if ( read_matrix(op, &mat) >= 0 )
  292.        {    /* Concatenate the matrix to the CTM just before */
  293.         /* stroking the path. */
  294.         npop = rect_get(&lr, op - 1);
  295.         if ( npop < 0 ) return npop;
  296.         code = gs_rectstroke(igs, lr.pr, lr.count, &mat);
  297.         npop++;
  298.        }
  299.     else
  300.        {    /* No matrix. */
  301.         npop = rect_get(&lr, op);
  302.         if ( npop < 0 ) return npop;
  303.         code = gs_rectstroke(igs, lr.pr, lr.count, (gs_matrix *)0);
  304.        }
  305.     rect_release(&lr);
  306.     if ( code < 0 ) return code;
  307.     pop(npop);
  308.     return 0;
  309. }
  310.  
  311. /* --- Internal routines --- */
  312.  
  313. /* Get rectangles from the stack. */
  314. /* Return the number of elements to pop (>0) if OK, <0 if error. */
  315. private int
  316. rect_get(local_rects *plr, os_ptr op)
  317. {    const ref *opp;
  318.     ref sref;
  319.     int format, code, npop;
  320.     uint n, count;
  321.     gs_rect *pr;
  322.  
  323.     switch ( r_type(op) )
  324.        {
  325.     case t_array:
  326.     case t_mixedarray:
  327.     case t_shortarray:
  328.     case t_string:
  329.         code = num_array_format(op);
  330.         if ( code < 0 )
  331.           return code;
  332.         format = code;
  333.         count = num_array_size(op, format);
  334.         if ( count % 4 )
  335.           return_error(e_rangecheck);
  336.         count /= 4, npop = 1;
  337.         opp = op;
  338.         break;
  339.     default:            /* better be 4 numbers */
  340.         make_array(&sref, a_readonly, 4, op - 3);
  341.         format = num_array;
  342.         count = 1, npop = 4;
  343.         opp = &sref;
  344.         break;
  345.        }
  346.     plr->count = count;
  347.     if ( count <= max_local_rect )
  348.         pr = plr->rl;
  349.     else
  350.     {    pr = (gs_rect *)ialloc_byte_array(count, sizeof(gs_rect),
  351.                           "rect_get");
  352.         if ( pr == 0 )
  353.           return_error(e_VMerror);
  354.     }
  355.     plr->pr = pr;
  356.     for ( n = 0; n < count; n++, pr++ )
  357.        {    ref rnum;
  358.         float rv[4];
  359.         int i;
  360.  
  361.         for ( i = 0; i < 4; i++ )
  362.            {    code = num_array_get(opp, format, (n << 2) + i, &rnum);
  363.             switch ( code )
  364.                {
  365.             case t_integer:
  366.                 rv[i] = rnum.value.intval;
  367.                 break;
  368.             case t_real:
  369.                 rv[i] = rnum.value.realval;
  370.                 break;
  371.             default:    /* code < 0 */
  372.                 return code;
  373.                }
  374.            }
  375.         pr->q.x = (pr->p.x = rv[0]) + rv[2];
  376.         pr->q.y = (pr->p.y = rv[1]) + rv[3];
  377.        }
  378.     return npop;
  379. }
  380.  
  381. /* Release the rectangle list if needed. */
  382. private void
  383. rect_release(local_rects *plr)
  384. {    if ( plr->pr != plr->rl )
  385.         ifree_object(plr->pr, "rect_release");
  386. }
  387.  
  388. /* ------ Graphics state ------ */
  389.  
  390. /* <llx> <lly> <urx> <ury> setbbox - */
  391. int
  392. zsetbbox(register os_ptr op)
  393. {    float box[4];
  394.     int code = num_params(op, 4, box);
  395.     if ( code < 0 ) return code;
  396.     if ( (code = gs_setbbox(igs, box[0], box[1], box[2], box[3])) < 0 )
  397.         return code;
  398.     pop(4);
  399.     return 0;
  400. }
  401.  
  402. /* ------ Initialization procedure ------ */
  403.  
  404. BEGIN_OP_DEFS(zdps1_l2_op_defs) {
  405.         op_def_begin_level2(),
  406.         /* Graphics state */
  407.     {"0currenthalftonephase", zcurrenthalftonephase},
  408.     {"0currentstrokeadjust", zcurrentstrokeadjust},
  409.     {"2sethalftonephase", zsethalftonephase},
  410.     {"1setstrokeadjust", zsetstrokeadjust},
  411.         /* Graphics state objects */
  412.     {"1currentgstate", zcurrentgstate},
  413.     {"0gstate", zgstate},
  414.     {"1setgstate", zsetgstate},
  415.         /* Rectangles */
  416.     {"1.rectappend", zrectappend},
  417.     {"1rectclip", zrectclip},
  418.     {"1rectfill", zrectfill},
  419.     {"1rectstroke", zrectstroke},
  420.         /* Graphics state components */
  421.     {"4setbbox", zsetbbox},
  422. END_OP_DEFS(zdps1_init) }
  423.  
  424. /* ------ Internal routines ------ */
  425.  
  426. /* Ensure that a gstate is not shared with an outer save level. */
  427. /* *op is of type t_astruct(igstate_obj). */
  428. private int
  429. gstate_unshare(os_ptr op)
  430. {    ref *pgsref = &r_ptr(op, igstate_obj)->gstate;
  431.     gs_state *pgs = r_ptr(pgsref, gs_state);
  432.     gs_state *pnew;
  433.     int_gstate *isp;
  434.     if ( !ref_must_save(pgsref) )
  435.       return 0;
  436.     /* Copy the gstate. */
  437.     pnew = gs_gstate(pgs);
  438.     if ( pnew == 0 )
  439.       return_error(e_VMerror);
  440.     isp = gs_int_gstate(pnew);
  441.     int_gstate_map_refs(isp, ref_mark_new);
  442.     ref_do_save(op, pgsref, "gstate_unshare");
  443.     make_istruct_new(pgsref, 0, pnew);
  444.     return 0;
  445. }
  446.